home *** CD-ROM | disk | FTP | other *** search
- /*
- ### draw a rubber box ###
- */
-
- #include <suntool/sunview.h>
-
- aux_rubber_box(aux_i,x,y,w,h,color)
- int aux_i,x,y,w,h,color;
- {
- extern Pixwin **aux_pw;
- pw_vector(aux_pw[aux_i], x, y, x + w, y, PIX_SRC ^ PIX_DST | PIX_COLOR(color), 1);
- pw_vector(aux_pw[aux_i], x + w, y, x + w, y - h, PIX_SRC ^ PIX_DST | PIX_COLOR(color), 1);
- pw_vector(aux_pw[aux_i], x + w, y - h, x, y - h, PIX_SRC ^ PIX_DST | PIX_COLOR(color), 1);
- pw_vector(aux_pw[aux_i], x, y - h, x, y, PIX_SRC ^ PIX_DST | PIX_COLOR(color), 1);
- }
-
-